* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #e8eef78a !important;
}

.whole-page-wrapper {
    background-image: url("../Assets/E-70.png");
    background-position: center;
    background-size: contain;
    max-width:3200px;
    margin-left:auto;
    margin-right:auto;
}

.hero-image-div {
    position: relative;
    text-align: center ;
}

.hero-image-div img {
    object-fit: cover;
    min-height: 300px;
    max-height: 1160px;
}

.hero-image-div .hero-text {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 3px 3px 6px black;
    color: white;
}

.description-header {
    color: white;
    background-color: #d26e63;
    padding: 15px 0 15px 0;
    box-shadow: 0px 7px 10px 4px rgb(167 157 157 / 70%);
}

.description-section {
    text-align: center;
    background-image: url('../Assets/E-93.png');
    background-size: cover;
    height: 420px;
    z-index: 0;
    position: relative;
    background-position: bottom;
}

.description-section .text-div {
    position: relative;
    text-align: center;
    z-index: 1;
    max-width: 80ch;
    margin-right: auto;
    margin-left: auto;
    padding: 5px 20px 0 20px;
    color:#1c2f4d;
}

.form-header {
    background-color: #d26e63;
    padding: 15px 0 15px 0;
    color: white;
    text-align: center;
    box-shadow: 0px 7px 10px 4px rgb(167 157 157 / 70%);
}

.drop-element {
    height: 37px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.description-div-text {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    text-align: start;
    max-width: 1100px;
    color: #1c2f4d;
    padding: 50px 30px;
    border: 2px solid #1c2f4d;
    border-radius: 20px;
    background-color: #b7cdef8a;
}

.description-div-text h2,
.description-div-text ul {
    margin-bottom: 20px !important;
}

.description-div-text i {
    transform: translateX(-10px);
}

.animated-image {
    margin-top:10px;
    text-align: center;
}

.apply-section h2 {
    text-align: center;
    font-size: 38px;
    color: #1d477c
}

.apply-section button {
    margin: 80px auto 140px auto;
    font-family: 'Poppins', serif;
    font-size: 32px;
    display: block;
    width: 300px;
    height: 70px;
    background-color: #f7c851;
    color: white;
    transition: .5s ease;
    border: 1px solid transparent;
    border-radius: 10px;
}

.apply-section button:hover {
    background-color: transparent;
    border: 1px solid #f7c851;
    color: #f7c851;
}

.application-form-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgb(247 247 247 / 90%);
    z-index: 9999;
    left:0;
    top:0;
    overflow: scroll;
    transform: translateX(-100%);
    transition: .5s ease;
}

.application-form-overlay .application-form {
    position: relative;
    top: 10%;
}

.application-form-overlay .application-form .close-button {
    margin-left:auto;
    display: block;
    font-size: 24px;
    padding: 8px 16px;
    background-color: #d26e63;
    color:white;
    border: 1px solid #d26e63;
    transition: .5s ease;
}

.application-form-overlay .application-form .close-button:hover{
    background-color: transparent;
    color:#d26e63;
}

.application-form-overlay-subheader {
    color:white;
    background-color: #d26e63;
    padding: 5px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group .btn{
    background-color: white !important;
    font-family: 'Poppins', serif;
    font-weight: 300;
}

.form-group .form-control {
    font-family: 'Poppins', serif;
    font-weight: 300;
}

.application-form-submit-button p {
    margin-bottom: 0;
}

.application-form-submit-button button {
    text-align: center;
    margin: 80px auto;
    font-family: 'Poppins', serif;
    font-size: 30px;
    display: block;
    width: 300px;
    height: 70px;
    background-color: #f7c851;
    color: white;
    transition: .5s ease;
    border: 1px solid transparent;
    border-radius: 10px;
}

.application-form-submit-button button:hover {
    background-color: transparent;
    border: 1px solid #f7c851;
    color: #f7c851;
}

.main-content-wrapper {
    background-image: url('../Assets/Careers/careers-wave-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.description-div {
    margin-top: 90px;
    margin-bottom: 150px;
}

.ship-bg-section {
    background-image: url('../Assets/Careers/boat/boat-bg-xl.png');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    height:950px;
    animation-name: ship-animation;
    animation-iteration-count: infinite;
    animation-duration: 5s;
}

@keyframes ship-animation {
    0%, 100% {
      transform: rotateZ(-0.5deg);
    }
  
    50% {
      transform: rotateZ(0.5deg);
    }
}

.whale-bg-section {
    background-image: url('../Assets/Careers/whale/whale-bg-xl.png');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    height:950px;   
}

.wave-bg-section {
    background-image: url('../Assets/Careers/wave-bg.png');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    height:950px;
    animation-name: wave-animation;
    animation-iteration-count: infinite;
    animation-duration: 5s;
}

@keyframes wave-animation {
    0%, 100% {
      transform: rotateZ(0.5deg);
    }
  
    50% {
      transform: rotateZ(-0.5deg);
    }
}

.submarine-bg-section {
    background-image: url('../Assets/Careers/submarine/submarine-bg-xl.png');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    height:950px;
}

.lighthouse-bg-section {
    background-image: url('../Assets/Careers/lighthouse-bg.png');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    height:950px;
}

.animated-section-wrapper {
    overflow: hidden;
    padding-top: 50px;
}

@media screen and (min-width: 2350px) {
    .description-section {
      height: 450px;
    }
}

@media screen and (max-width: 2900px) {
    .ship-bg-section,
    .whale-bg-section,
    .wave-bg-section,
    .submarine-bg-section,
    .lighthouse-bg-section {
        height: 840px;
    }
}

@media screen and (max-width: 2551px) {
    .ship-bg-section,
    .whale-bg-section,
    .wave-bg-section,
    .submarine-bg-section,
    .lighthouse-bg-section {
        height: 680px;
    }
}

@media screen and (max-width: 2100px) {
    .ship-bg-section,
    .whale-bg-section,
    .wave-bg-section,
    .submarine-bg-section,
    .lighthouse-bg-section {
        height: 560px;
    }
}

@media screen and (max-width: 1630px) {
    .ship-bg-section,
    .whale-bg-section,
    .wave-bg-section,
    .submarine-bg-section,
    .lighthouse-bg-section {
        height: 440px;
    }
}

@media screen and (max-width: 1200px) {
    .description-section {
        height: 330px;
      }

    .application-form-submit-button button {
        font-size: 24px;
        width: 250px;
        height: 50px;
    }

    .apply-section button {
        font-size: 26px;
        width: 260px;
        height: 55px;
    }

    .apply-section h2 {
        font-size: 34px;
    }
}

@media screen and (max-width: 991px) {
    section .description-text-div {
        margin-bottom: 50px;
        padding: 0 30px 0 30px;
    }

    .description-section {
        height: 320px;
    }

    .animated-image img {
        max-width: 380px;
    }
}

@media screen and (max-width: 810px) {
    .ship-bg-section {
        background-image: url('../Assets/Careers/boat/boat-bg-lg.png');
    }
    
    .whale-bg-section {
        background-image: url('../Assets/Careers/whale/whale-bg-lg.png');  
    }
    
    .submarine-bg-section {
        background-image: url('../Assets/Careers/submarine/submarine-bg-lg.png');
    }
}

@media screen and (max-width: 600px) {
    .ship-bg-section {
        background-image: url('../Assets/Careers/boat/boat-bg-md.png');
    }
}

@media screen and (max-width: 568px) {
    .form-section button {
        font-size: 22px;
        width: 250px;
        height: 50px;
    }

    .description-section {
        height: 300px;
    }

    .application-form-submit-button button {
        font-size: 20px;
        width: 220px;
        height: 45px;
    }

    .apply-section button {
        font-size: 22px;
        width: 200px;
        height: 45px;
        margin-bottom: 25px;
    }

    .apply-section h2 {
        font-size: 30px;
    }

    .animated-image img {
        max-width: 285px;
    }

    .animated-image {
        margin-top: -10px;
    }

    .description-div {
        margin-top: 70px;
    }
}

@media screen and (max-width: 530px) {
    .description-section {
      height: 400px;
    }
}

@media screen and (max-width: 456px) {
    .whale-bg-section {
        background-image: url('../Assets/Careers/whale/whale-bg-md.png');  
    }
    
    .submarine-bg-section {
        background-image: url('../Assets/Careers/submarine/submarine-bg-md.png');
    }
}

@media screen and (max-width: 437px) {
    .hero-image-div img {
        min-height: auto;
    }
}

@media screen and (max-width: 367px) {
    .description-section {
      height: 460px;
    }
}








